home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 11 / PC World Interactive 11.iso / share / convert / o2cv10.arj / O2CPACK / EXAMPLE.C next >
C/C++ Source or Header  |  1995-09-19  |  308b  |  19 lines

  1. /* This file is part of the Object to Coff (O2C) package!
  2.    ------------------------------------------------------ */
  3.  
  4. char TextjeC[]="hello world from c";
  5.  
  6. void main(void)
  7. {
  8. PrintTextAsm();
  9. printf("\n");
  10.  
  11. PrintTextC();
  12. printf("\n");
  13.  
  14. StrCaseSwap(&TextjeC);
  15. PrintTextC();
  16. printf("\n");
  17. }
  18.  
  19.